home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995…tember: Reference Library / Dev.CD Sep 95 RL / Dev.CD Sep 95 RL.toast / mac / Technical Documentation / develop / develop Issue 18 code / OSA Sample / Sources / DebugTrace.h < prev    next >
Encoding:
Text File  |  1994-01-28  |  736 b   |  37 lines  |  [TEXT/MPS ]

  1.  
  2. /*
  3.     File:        DebugTrace.h
  4.  
  5.     Contains:    Debug helper interface.
  6.  
  7.     Developed by:    
  8.         
  9.         Paul G Smith (commstalk hq & Full Moon Software, Inc)
  10.         
  11.         you can leave messages at (UK): 0727 844232; (US): 408 253 7199
  12.         BUT I prefer to be contacted by e-mail
  13.         AppleLink:     SMITH.PG
  14.         Internet:     SMITH.PG@applelink.apple.com
  15.         
  16.         "SimpliFace" Sample code to accompany develop article
  17.         on techniques for embedding scripts in applications.
  18.  
  19.  
  20.     To link the output of this file you need also to link with
  21.     file "DebugTranscript.lib".
  22.  
  23. */
  24.  
  25.  
  26.  
  27. extern "C" {    // debug utility functions
  28.     pascal void InstallWriteLnHook();
  29.     pascal void SetDebugLevel(short);
  30. }
  31.  
  32. void SuspendDebug(void);
  33. void ResumeDebug(void);
  34. void ForceDebug(void);
  35. void EndForceDebug(void);
  36.  
  37.